home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.OpenProm / sainet.h < prev    next >
C/C++ Source or Header  |  1991-01-09  |  354b  |  17 lines

  1. #ifndef _SAINET_H
  2. #define _SAINET_H
  3.  
  4. #include <netInet.h>
  5.  
  6. /*
  7.  * Standalone Internet Protocol State
  8.  */
  9.  
  10. struct sainet {
  11.     Net_InetAddress     myAddr;        /* my host address */
  12.     Net_EtherAddress    myEther;    /* my Ethernet address */
  13.     Net_InetAddress        hisAddr;    /* his host address */
  14.     Net_EtherAddress    hisEther;    /* his Ethernet address */
  15. };
  16. #endif /* _SAINET_H */
  17.